e58b4067a08ea19860e288264f1b3999eec6854c,styx-cli/src/main/java/com/spotify/styx/cli/PrettyCliOutput.java,PrettyCliOutput,printBackfill,#Backfill#,111

Before Change


    format(s, "component:",     colored(CYAN, workflowId.componentId()));
    format(s, "workflow:",      colored(CYAN, workflowId.endpointId()));
    format(s, "halted:",        colored(CYAN, backfill.halted()));
    format(s, "all triggered:", colored(CYAN, backfill.allTriggered()));
    format(s, "concurrency:",   colored(CYAN, backfill.concurrency()));
    format(s, "start (incl):",  colored(CYAN, toParameter(partitioning, backfill.start())));
    format(s, "end (excl):",    colored(CYAN, toParameter(partitioning, backfill.end())));
    format(s, "next trigger:",  colored(CYAN, toParameter(partitioning, backfill.nextTrigger())));
  }

  @Override

After Change


           backfill.concurrency(),
           toParameter(partitioning, backfill.start()),
           toParameter(partitioning, backfill.end()),
           toParameter(partitioning, backfill.nextTrigger()),
           workflowId.componentId(),
           workflowId.endpointId());
  }